We can move this to just use the actual GtkCssGadget of the menu item.
gtkcairoblurprivate.h \
gtkcellareaboxcontextprivate.h \
gtkcheckbuttonprivate.h \
+ gtkcheckmenuitemprivate.h \
gtkclipboardprivate.h \
gtkcolorswatchprivate.h \
gtkcoloreditorprivate.h \
priv->active = is_active;
update_node_state (check_menu_item);
}
+
+GtkCssGadget *
+_gtk_check_menu_item_get_indicator_gadget (GtkCheckMenuItem *check_menu_item)
+{
+ return check_menu_item->priv->indicator_gadget;
+}
GDK_AVAILABLE_IN_ALL
gboolean gtk_check_menu_item_get_draw_as_radio (GtkCheckMenuItem *check_menu_item);
-
-/* private */
-void _gtk_check_menu_item_set_active (GtkCheckMenuItem *check_menu_item,
- gboolean is_active);
-
-
G_END_DECLS
#endif /* __GTK_CHECK_MENU_ITEM_H__ */
--- /dev/null
+/* GTK - The GIMP Toolkit
+ * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __GTK_CHECK_MENU_ITEM_PRIVATE_H__
+#define __GTK_CHECK_MENU_ITEM_PRIVATE_H__
+
+#include <gtk/gtkcheckmenuitem.h>
+#include <gtk/gtkcssgadgetprivate.h>
+
+G_BEGIN_DECLS
+
+void _gtk_check_menu_item_set_active (GtkCheckMenuItem *check_menu_item,
+ gboolean is_active);
+GtkCssGadget * _gtk_check_menu_item_get_indicator_gadget (GtkCheckMenuItem *check_menu_item);
+
+G_END_DECLS
+
+#endif /* __GTK_CHECK_MENU_ITEM_PRIVATE_H__ */
#include "gtkadjustment.h"
#include "gtkbindings.h"
#include "gtkcheckmenuitem.h"
+#include "gtkcheckmenuitemprivate.h"
#include "gtkmain.h"
#include "gtkmarshalers.h"
#include "gtkmenuprivate.h"
gtk_menu_get_n_columns (menu) == 1 &&
!priv->no_toggle_size)
{
- GtkStyleContext *context;
- GtkWidgetPath *check_path;
- guint toggle_spacing;
- guint indicator_size;
-
- context = gtk_style_context_new ();
-
- /* Create a GtkCheckMenuItem path, only to query indicator spacing */
- check_path = _gtk_widget_create_path (widget);
- gtk_widget_path_append_type (check_path, GTK_TYPE_CHECK_MENU_ITEM);
-
- gtk_style_context_set_path (context, check_path);
- gtk_widget_path_free (check_path);
- gtk_style_context_set_screen (context, gtk_widget_get_screen (widget));
-
- gtk_style_context_get_style (context,
- "toggle-spacing", &toggle_spacing,
- "indicator-size", &indicator_size,
- NULL);
-
- max_toggle_size = indicator_size + toggle_spacing;
-
- g_object_unref (context);
+ GtkWidget *menu_item;
+ GtkCssGadget *indicator_gadget;
+ gint indicator_width;
+
+ /* Create a GtkCheckMenuItem, to query indicator size */
+ menu_item = gtk_check_menu_item_new ();
+ indicator_gadget = _gtk_check_menu_item_get_indicator_gadget
+ (GTK_CHECK_MENU_ITEM (menu_item));
+
+ gtk_css_gadget_get_preferred_size (indicator_gadget,
+ GTK_ORIENTATION_HORIZONTAL,
+ -1,
+ &indicator_width, NULL,
+ NULL, NULL);
+ max_toggle_size = indicator_width;
+
+ gtk_widget_destroy (menu_item);
}
min_width += 2 * max_toggle_size + max_accel_width;
GTK_PARAM_READABLE |
G_PARAM_DEPRECATED));
+ /**
+ * GtkMenuItem:toggle-spacing:
+ *
+ * Spacing between menu icon and label.
+ *
+ * Deprecated: 3.20: use the standard margin CSS property on the check or
+ * radio nodes; the value of this style property is ignored.
+ */
gtk_widget_class_install_style_property (widget_class,
g_param_spec_int ("toggle-spacing",
"Icon Spacing",
0,
G_MAXINT,
5,
- GTK_PARAM_READABLE));
+ GTK_PARAM_READABLE|G_PARAM_DEPRECATED));
/**
* GtkMenuItem:arrow-spacing:
#include "gtkmodelmenuitem.h"
#include "gtkaccellabel.h"
+#include "gtkcheckmenuitemprivate.h"
#include "gtkimage.h"
#include "gtkbox.h"
#include "config.h"
#include "gtkaccellabel.h"
+#include "gtkcheckmenuitemprivate.h"
#include "gtkmarshalers.h"
#include "gtkradiomenuitem.h"
#include "deprecated/gtkactivatable.h"
}
}
-menuitem accelerator { color: gtkalpha(currentColor,0.55); }
-
+menuitem {
+ & accelerator { color: gtkalpha(currentColor,0.55); }
+ & check,
+ & radio {
+ &:dir(ltr) { margin-right: 7px; }
+ &:dir(rtl) { margin-left: 7px; }
+ }
+}
/***************
* Popovers *
color: mix($fg_color, $bg_color, 70%);
-gtk-icon-source: -gtk-icontheme('#{$a}-symbolic');
-gtk-icon-shadow: none;
- &:dir(ltr) { margin-right: 7px; }
- &:dir(rtl) { margin-left: 7px; }
&:hover, &:insensitive {
-gtk-icon-source: -gtk-icontheme('#{$a}-symbolic');
-gtk-icon-shadow: none;
menuitem accelerator {
color: alpha(currentColor,0.55); }
+menuitem check:dir(ltr), menuitem radio:dir(ltr) {
+ margin-right: 7px; }
+menuitem check:dir(rtl), menuitem radio:dir(rtl) {
+ margin-left: 7px; }
/***************
* Popovers *
color: #b8bab8;
-gtk-icon-source: -gtk-icontheme("checkbox-symbolic");
-gtk-icon-shadow: none; }
- menu menuitem check:dir(ltr) {
- margin-right: 7px; }
- menu menuitem check:dir(rtl) {
- margin-left: 7px; }
menu menuitem check:hover, menu menuitem check:insensitive {
-gtk-icon-source: -gtk-icontheme("checkbox-symbolic");
-gtk-icon-shadow: none; }
color: #b8bab8;
-gtk-icon-source: -gtk-icontheme("radio-symbolic");
-gtk-icon-shadow: none; }
- menu menuitem radio:dir(ltr) {
- margin-right: 7px; }
- menu menuitem radio:dir(rtl) {
- margin-left: 7px; }
menu menuitem radio:hover, menu menuitem radio:insensitive {
-gtk-icon-source: -gtk-icontheme("radio-symbolic");
-gtk-icon-shadow: none; }
menuitem accelerator {
color: alpha(currentColor,0.55); }
+menuitem check:dir(ltr), menuitem radio:dir(ltr) {
+ margin-right: 7px; }
+menuitem check:dir(rtl), menuitem radio:dir(rtl) {
+ margin-left: 7px; }
/***************
* Popovers *
color: #666a6b;
-gtk-icon-source: -gtk-icontheme("checkbox-symbolic");
-gtk-icon-shadow: none; }
- menu menuitem check:dir(ltr) {
- margin-right: 7px; }
- menu menuitem check:dir(rtl) {
- margin-left: 7px; }
menu menuitem check:hover, menu menuitem check:insensitive {
-gtk-icon-source: -gtk-icontheme("checkbox-symbolic");
-gtk-icon-shadow: none; }
color: #666a6b;
-gtk-icon-source: -gtk-icontheme("radio-symbolic");
-gtk-icon-shadow: none; }
- menu menuitem radio:dir(ltr) {
- margin-right: 7px; }
- menu menuitem radio:dir(rtl) {
- margin-left: 7px; }
menu menuitem radio:hover, menu menuitem radio:insensitive {
-gtk-icon-source: -gtk-icontheme("radio-symbolic");
-gtk-icon-shadow: none; }